home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2006 December / PCWDEC06.iso / Software / Trial / Paint Shop Pro XI / Data1.cab / _E2F47245C2A14DC9980C0900C93648BD < prev    next >
Encoding:
Text File  |  2006-08-04  |  2.3 KB  |  69 lines

  1. from PSPApp import *
  2.  
  3. def ScriptProperties():
  4.     return {
  5.         'Author': u'Corel Corporation',
  6.         'Copyright': u'2005 (c) Corel Corporation.  All rights reserved.',
  7.         'Description': u'Lexar Active Memory Batch Script',
  8.         'Host': u'Paint Shop Pro X',
  9.         'Host Version': u'10.02'
  10.         }
  11.  
  12. def Do(Environment):
  13.     # EnableOptimizedScriptUndo
  14.     App.Do( Environment, 'EnableOptimizedScriptUndo', {
  15.             'GeneralSettings': {
  16.                 'ExecutionMode': App.Constants.ExecutionMode.Default, 
  17.                 'AutoActionMode': App.Constants.AutoActionMode.Match, 
  18.                 'Version': ((10,0,2),1)
  19.                 }
  20.             })
  21.  
  22.     # ImageInfo
  23.     App.Do( Environment, 'ImageInfo', {
  24.             'ArtistName': None, 
  25.             'CopyrightHolder': u'(c) 2005', 
  26.             'Description': None, 
  27.             'Title': None, 
  28.             'DisplayArtist': True, 
  29.             'DisplayConditions': True, 
  30.             'DisplayDate': True, 
  31.             'DisplayGPS': True, 
  32.             'DisplayImage': True, 
  33.             'DisplayInput': True, 
  34.             'DisplayMakernote': True, 
  35.             'DisplayDataOnly': True, 
  36.             'ExifTitle': None, 
  37.             'ExifArtistName': None, 
  38.             'ExifCopyright': None, 
  39.             'ExifComments': None, 
  40.             'ActivePage': App.Constants.ImageInfoPropertySheet.CreatorPage, 
  41.             'City': None, 
  42.             'State': None, 
  43.             'Country': None, 
  44.             'Credit': None, 
  45.             'Source': None, 
  46.             'Headline': None, 
  47.             'DescWriter': None, 
  48.             'Instructions': None, 
  49.             'TransRef': None, 
  50.             'Urgency': None, 
  51.             'ExifOrientation': 1, 
  52.             'ExifDateTimeDigitized': u'', 
  53.             'GeneralSettings': {
  54.                 'ExecutionMode': App.Constants.ExecutionMode.Default, 
  55.                 'AutoActionMode': App.Constants.AutoActionMode.Match, 
  56.                 'Version': ((10,0,2),1)
  57.                 }
  58.             })
  59.  
  60.     # OneStepPhotoFix
  61.     App.Do( Environment, 'OneStepPhotoFix', {
  62.             'GeneralSettings': {
  63.                 'ExecutionMode': App.Constants.ExecutionMode.Default, 
  64.                 'AutoActionMode': App.Constants.AutoActionMode.Match, 
  65.                 'Version': ((10,0,2),1)
  66.                 }
  67.             })
  68.  
  69.